home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Linked script for MCI-MAIL basic service
- ; Link it to your Qmodem phone directory entry for MCI-MAIL.
- ; As is, this script prints all your mail, then disconnects.
- ;
- ; USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
- ; [1] Your MCI-Mail username
- ; [2] Your MCI-Mail password
- ; [3] Any MCI-Mail command(s)
- ;
- ;
- ; Note: examples are for standard, not advanced service
- ;
-
-
- NOTE ** LOGON TO MCI-MAIL VIA DIRECT CONNECT **
-
- TIMEOUT 60
-
- TURNON XON/XOFF
- TURNOFF ECHO LINEFEED
-
-
- SEND "{" ; MCI-Mail 'logon' is CR
-
- WAITFOR "user name:" ; Look for UserID prompt
-
- SEND "USERNAME{" ; [1] Send your MCI-Mail user name
- ; followed by CR
-
- WAITFOR "Password: " ; Wait for MCI-Mail password prompt
-
- SEND "FAKE-PASSWORD{" ; [2] Send your password
-
- TURNON PRINT ; Turn on your printer
-
- WAITFOR "<RETURN> to continue" ; Wait for MCI-Mail to Request your input
-
- SEND "{" ; Send a CR
-
- WAITFOR "or EXIT):" ; Wait for MCI-Mail to Request your input
-
- SEND "PRINT{" ; [3] Select PRINT to print messages nonstop
-
- WAITFOR "(or MENU or EXIT):" ; Wait for MCI-Mail to Request your input
-
- SEND "ALL{" ; [3] Select ALL to print incoming messages
- ; only or INBOX to print just incoming
- ; messages
-
- WAITFOR "<RETURN> to continue" ; Wait for MCI-Mail to Request your input
-
- SEND "{" ; Send a CR
-
- WAITFOR "(or MENU or EXIT):" ; Wait for MCI-Mail to Request your input
-
- SEND "EXIT{" ; [3] Select EXIT to log off
-
- HANGUP ; Disconnect from Phone Line
-
- RETURN ; return control to keyboard